-
Notifications
You must be signed in to change notification settings - Fork 507
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deps: upgrade several more deps' majors #879
deps: upgrade several more deps' majors #879
Conversation
- @types/node v13 -> v14 - Node 13.x was EoL at the beginning of June per https://github.com/nodejs/Release - @types/fs-extra was recently updated to v9, so can bump it to match the recent upgrade of fs-extra itself to v9 - rollup-plugin-sourcempas v0.5 -> v0.6 - requires Node 10+, which we've already bumped to in the last dep upgrade, otherwise no breaking changes - @rollup/plugin-node-resolve v7 -> v9 - requires Node 10+, which we've already bumped to in the last dep upgrade, other breaking changes don't affect our usage - use the new `DEFAULTS` variables to pull out the extensions instead of having a comment referencing them - rename this `DEFAULTS` to `RESOLVE_DEFAULTS` and Babel's `DEFAULT_EXTENSIONS` to `DEFAULT_BABEL_EXTENSIONS` so that there's less naming confusion around these - fix execa being pinned to v4.0.0 exactly - this was probably accidentally added as such because sometimes `yarn add dep@x` sets it exactly instead of to the caret version
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/formium/tsdx/m11oys6lt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some confusing changes, but they're all correct. LGTM 👍
Deleted all the stale old Greenkeeper branches associated with all versions of the deps upgraded: |
- @types/node v13 -> v14 - Node 13.x was EoL at the beginning of June per https://github.com/nodejs/Release - @types/fs-extra was recently updated to v9, so can bump it to match the recent upgrade of fs-extra itself to v9 - rollup-plugin-sourcempas v0.5 -> v0.6 - requires Node 10+, which we've already bumped to in the last dep upgrade, otherwise no breaking changes - @rollup/plugin-node-resolve v7 -> v9 - requires Node 10+, which we've already bumped to in the last dep upgrade, other breaking changes don't affect our usage - use the new `DEFAULTS` variables to pull out the extensions instead of having a comment referencing them - rename this `DEFAULTS` to `RESOLVE_DEFAULTS` and Babel's `DEFAULT_EXTENSIONS` to `DEFAULT_BABEL_EXTENSIONS` so that there's less naming confusion around these - fix execa being pinned to v4.0.0 exactly - this was probably accidentally added as such because sometimes `yarn add dep@x` sets it exactly instead of to the caret version
Description
@types/node v13 -> v14
https://github.com/nodejs/Release
@types/fs-extra was recently updated to v9, so can bump it to match
the recent upgrade of fs-extra itself to v9
rollup-plugin-sourcempas v0.5 -> v0.6
upgrade, otherwise no breaking changes
@rollup/plugin-node-resolve v7 -> v9
upgrade, other breaking changes don't affect our usage
DEFAULTS
variables to pull out the extensions insteadof having a comment referencing them
DEFAULTS
toRESOLVE_DEFAULTS
and Babel'sDEFAULT_EXTENSIONS
toDEFAULT_BABEL_EXTENSIONS
so that there'sless naming confusion around these
fix execa being pinned to v4.0.0 exactly
yarn add dep@x
sets it exactly instead of to the caret versionTags
This is basically a follow-up to #678 , including fixing the accidental exact
execa
pin created. Also adds the@types/fs-extra
upgrade that didn't exist back then.Closes a few related Greenkeeper PRs: